home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / SHO13.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  139 lines

  1. name Shizuoka Model 13-5V
  2.  
  3. B 00 %
  4. O >4
  5. L >4
  6. N >4
  7. G >2
  8. g >2 G
  9. D >2
  10. X ->3.>4
  11. Y ->3.>4
  12. Z ->3.>4
  13. I ->3.>4
  14. J ->3.>4
  15. Q ->3.>4
  16. R ->3.>4
  17. P ->3.>4
  18. F >3.1
  19. K ->3.>4
  20. H >2
  21. T >2
  22. S >4
  23. M >2
  24.  
  25. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  26.  
  27. Spaces? Y                             # Y or N  'Spaces between words     
  28.  
  29. First#? N                             # Y or N  'Output 1st sequence no.  
  30. Last#? N                              # Y or N  'Output last sequence no. 
  31.  
  32. HCode X                               # X or X U  'Horizontal char.       
  33. VCode Y                               # Y or Y V  'Vertical char.         
  34. Dcode Z                               # Depth char.                       
  35. FeedCode F                            # Feed rate char.                   
  36.  
  37. Comment ( )                           # Begin End comment char.           
  38.  
  39. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  40. Coolant 8 9 7                         # On, Off & Mist m codes            
  41. DComp 41 42 40                        # Left, Right & Cancel m codes      
  42. LComp 43 49                           # On & Off codes                    
  43.  
  44. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  45. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  46.  
  47. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  48.  
  49. Work G                                # Work offset register              
  50.  
  51. CtrCode I J                           # I J or R or I J K L               
  52. Helical? N
  53.  
  54. Feed G1                             # Linear move                       
  55. Rapid G0                            # Rapid positioning word            
  56. Cw G2                               # Circular move clockwise           
  57. Ccw G3                              # Circular move counter clockwise   
  58.  
  59. Inch/MM 20 21                         # Inch & Metric g codes             
  60.  
  61. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  62.  
  63.  
  64. Drill                                 # Drilling canned/manual cycle      
  65. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  66. end cancel
  67.  
  68. Peck                                  # Pecking canned/manual cycle       
  69. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  70. end cancel
  71.  
  72. Tap                                   # Tapping canned/manual cycle       
  73. G84 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  74. end cancel
  75.  
  76. LTap                                  # Left handed tapping cycle         
  77. G74 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  78. end cancel
  79.  
  80. Ream                                  # Reaming canned/manual cycle       
  81. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  82. end cancel
  83.  
  84. Bore                                  # Boring canned/manual cycle        
  85. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  86. end cancel
  87.  
  88. Back                                  # Back boring canned/manual cycle   
  89. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  90. end cancel
  91.  
  92. Cancel                                # Cancel a canned/manual cycle      
  93. G80
  94. end
  95.  
  96. StartCode                             # Start of the program              
  97. B00
  98. O[Program#]
  99. G00 G17 G[Unitmode] G40 G49 G80 G90 G94
  100. G00 g91 G28 X0 Y0 Z0
  101. G0 G54 G90 X0 Y0
  102. End
  103.  
  104. 1stToolChange                         # First tool change                 
  105. T[Tool] M6
  106. X[H] Y[V] S[Speed] M[Direct]
  107. G43 Z[Rplane] H[Lcomp]
  108. End
  109.  
  110. Infeed                                # Enable cutter comp                
  111. G[Side] D[Dcomp] X[H] Y[V] F[FRate]
  112. end
  113.  
  114. Outfeed                               # Disable cutter comp               
  115. G1 G40 X[H] Y[V]
  116. end
  117.  
  118. ToolChange                            # Secondary tool changes            
  119. T[Tool]
  120. G00 G90 M9
  121. M5
  122. g91 G28 Z0
  123. G00 G90 X0 Y0
  124. M01
  125. M6
  126. G0 G90 X[H] Y[V] S[Speed] M[Direct]
  127. G43 Z[Rplane] H[Lcomp]
  128. End
  129.  
  130. EndCode                               # End of the program                
  131. G00 G90 M9
  132. M5
  133. g91 G28 Z0
  134. g91 G28 X0 Y0
  135. G0 G40 G49 G80 G90
  136. M30
  137. End
  138.  
  139.